home *** CD-ROM | disk | FTP | other *** search
/ 600 Games / 600games.iso / Nave / monochrome.swf / scripts / frame_16 / PlaceObject2_560_34 / CLIPACTIONRECORD onClipEvent(load).as
Encoding:
Text File  |  2005-08-26  |  593 b   |  26 lines

  1. onClipEvent(load){
  2.    if(_root.dead == false && _root.score >= _root.goal)
  3.    {
  4.       _root.money += _root.reward;
  5.       _root.m = "$" + _root.money;
  6.       r = "$" + _root.reward;
  7.       _root.money += _root.score;
  8.       _root.m = "$" + _root.money;
  9.       _root.mission += 1;
  10.       this.gotoAndStop(1);
  11.    }
  12.    else
  13.    {
  14.       this.gotoAndStop(2);
  15.       _root.score = 0;
  16.       if(_root.goal > 0 && _root.dead == false)
  17.       {
  18.          _root.s = "You Got: " + _root.s + "  You Needed: $" + _root.goal;
  19.       }
  20.       else
  21.       {
  22.          _root.s = "$0";
  23.       }
  24.    }
  25. }
  26.